aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/app/(main)/goals/[id]
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswa Kalyan Bhuyan <biswa@surgot.in> 2025-04-28 08:32:07 +0530
committerLibravatarLibravatar Biswa Kalyan Bhuyan <biswa@surgot.in> 2025-04-28 08:32:07 +0530
commitd2c03d9417fb289d455f80f4c6facd7274c31d3e (patch)
tree3de135eb932ff20aa50abfb39d5a8abba4758d65 /frontend/src/app/(main)/goals/[id]
parent538d933baef56d7ee76f78617b553d63713efa24 (diff)
downloadfinance-master.tar.gz
finance-master.tar.bz2
finance-master.zip
finance/backend: feat: Refined APIs for Loans and Goals based on frontend needsHEADmaster
Diffstat (limited to 'frontend/src/app/(main)/goals/[id]')
-rw-r--r--frontend/src/app/(main)/goals/[id]/page.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/frontend/src/app/(main)/goals/[id]/page.tsx b/frontend/src/app/(main)/goals/[id]/page.tsx
index 3428ca4..cda33c1 100644
--- a/frontend/src/app/(main)/goals/[id]/page.tsx
+++ b/frontend/src/app/(main)/goals/[id]/page.tsx
@@ -12,9 +12,12 @@ import { useToast } from "@/components/ui/use-toast";
import { formatCurrency } from "@/lib/utils";
import { api } from "@/lib/api";
import { GoalProgress } from "../components/goals-list";
+import { use } from "react";
export default function GoalDetailPage({ params }: { params: { id: string } }) {
- const id = params.id;
+ // Unwrap params Promise using React.use()
+ const unwrappedParams = use(params);
+ const id = unwrappedParams.id;
const goalId = parseInt(id);
const [goal, setGoal] = useState<GoalWithProgress | null>(null);